home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / VD08BIN.ZIP / usr / include / db / DBBoolField.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-13  |  224 b   |  19 lines

  1. #ifndef _DBBOOLFIELD_H_
  2. #define _DBBOOLFIELD_H_
  3.  
  4. #ifndef _DBFIELD_H_
  5. #include "DBField.h"
  6. #endif
  7.  
  8. @interface DBBoolField : DBField
  9. {
  10. }
  11.  
  12. -(BOOL) booleanValue;
  13. -setBooleanValue: (BOOL) aValue;
  14.  
  15. @end
  16.  
  17. #endif
  18.  
  19.